/* ======= Pamatstils ======= */
body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #0f0f10, #1b1b1f, #2d1b4e);
  margin: 0;
  color: #fff;
  min-height: 100vh;
  background-attachment: fixed;
}

/* ======= Navigācija ======= */
.nav-bar {
  background: rgba(0, 0, 0, 0.7);
  padding: 15px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #8b5cf6;
  box-shadow: 0 3px 10px rgba(0,0,0,0.6);
}

.nav-bar h2 {
  font-size: 22px;
  color: #dcd0ff;
}

.nav-bar a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  margin-left: 15px;
  transition: 0.3s;
}
.nav-bar a:hover {
  color: #a78bfa;
}

/* ======= Konteineri ======= */
.login-container, .content {
  background: rgba(255,255,255,0.05);
  padding: 40px;
  border-radius: 16px;
  max-width: 450px;
  margin: 80px auto;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
}

/* ======= Logo ======= */
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 1px;
}
.logo-icon {
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 0 4px #8b5cf6);
}

/* ======= Formas ======= */
input {
  width: 90%;
  margin: 10px 0;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  background-color: rgba(255,255,255,0.15);
  color: #fff;
  outline: none;
}
input::placeholder {
  color: #bbb;
}

button {
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
  font-weight: bold;
}
button:hover {
  background: linear-gradient(135deg, #9d7bff, #7c3aed);
  transform: scale(1.05);
}

/* ======= Tabulas ======= */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 25px;
  background-color: rgba(255,255,255,0.05);
  border-radius: 10px;
  overflow: hidden;
}

th, td {
  padding: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-align: left;
}

th {
  background-color: rgba(255,255,255,0.1);
  color: #d9d4f7;
  font-weight: 600;
}

tr:hover {
  background-color: rgba(255,255,255,0.08);
}

/* ======= Transfer forma ======= */
.transfer-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
  margin: 0 auto;
  text-align: left;
}

.transfer-form label {
  font-weight: 600;
  color: #d9d4f7;
}

.transfer-form input {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: none;
  margin-bottom: 10px;
  background-color: rgba(255,255,255,0.1);
  color: #fff;
}

#message {
  margin-top: 15px;
  font-weight: bold;
  text-align: center;
}

/* ======= Animācija ======= */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.login-container, .content { animation: fadeIn 0.8s ease-in-out; }

p {
  text-align: center;
}

